[【TypeScript】中括弧でバインドする際に、暗黙anyエラーになる時 | Awesome Blog](https://awesome-linus.com/2019/11/19/typescript-curly-bracket-type-any-error/) |
nuxtjsで、
async created() {
const response = await this.$axios.get('/api')
if (response) {
this.all_counselors_name = response.data.map((x) => x.name)
}
},